home *** CD-ROM | disk | FTP | other *** search
- /*
- Emma.score
-
- "Emma" by Emma Banjo
-
- This is a sample scorefile illustrating the use of the Pluck
- synthpatch.
-
- If you use your own Music Kit program, Pluck must be loaded into your
- program to play this. See <musickit/synthpatches/Pluck.h> for details
- on the meaning of the parameters in the Notes in this file.
-
- Feel free to copy and modify this example.
- */
-
- part p1; /* Declare five parts. */
-
- p1 synthPatch:"Pluck" synthPatchCount:2;
- BEGIN; /* This starts the "body" of the scorefile. */
- t .1; /* Time is in beats and is modified by tempo. */
- p1 (noteUpdate) ampRel:1 decay:100 amp:.9 bright:.9 velocitySensitivity:1.0;
- /* Note updates with no tag apply to all note tags of the part.
- In this case, we use the same note tag over and
- over in each part, thus each part consists of one long phrase. */
- END;
-
-
-
-